body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    background-image: url(../../IMAGE/jogo-sujo.png);
    height: 110vh;
    position: relative;
  }
  body::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1;
  }
  
  
  .filme-info {
    position: relative;
  }
  
  .filme-info::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.0);
    z-index: -1;
  }
  
  .titulo-filme {
    position: relative;
    font-size: 6rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    margin-top: 50px;
  }
  
  .detalhes {
    margin: 60px;
    display: flex;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
  }
  
  .sinopse {
    flex: 3;
    margin-right: 40px;
  }
  
  .sinopse h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .sinopse p {
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .botao-play {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .botao-play a {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    padding: 20px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background-color 0.2s ease;
  }
  
  .botao-play a:hover {
    background-color: #f40612;
  }
  .botao-play:hover {
    transform: scale(1.1); /* Isso aumentará o tamanho do botão em 10% */
  }
  
  